/* ============================================================================
   BitRank Express — self-hosted webfonts (local-first: no runtime CDN)

   STATUS: fonts not yet vendored into the workspace (network fetch was blocked
   in the build sandbox). The site currently renders on the token fallback stack
   (Inter → system-ui / SF Pro; IBM Plex Mono → ui-monospace / SF Mono), which is
   visually close. To ship the real brand fonts per brief §2.3:

     1. Drop woff2 files into site/assets/fonts/:
        inter-400.woff2 inter-500.woff2 inter-600.woff2 inter-700.woff2
        ibm-plex-mono-400.woff2 ibm-plex-mono-500.woff2
        ibm-plex-mono-600.woff2 ibm-plex-mono-700.woff2
        (Inter is OFL; IBM Plex Mono is OFL — both self-hostable.)
     2. Uncomment the @font-face blocks below.
   No other change needed — components already reference --font-ui / --font-mono.
   ========================================================================== */

/*
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;
  src:url('../assets/fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;
  src:url('../assets/fonts/inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;
  src:url('../assets/fonts/inter-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;
  src:url('../assets/fonts/inter-700.woff2') format('woff2');}

@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:400;font-display:swap;
  src:url('../assets/fonts/ibm-plex-mono-400.woff2') format('woff2');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:500;font-display:swap;
  src:url('../assets/fonts/ibm-plex-mono-500.woff2') format('woff2');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:600;font-display:swap;
  src:url('../assets/fonts/ibm-plex-mono-600.woff2') format('woff2');}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:700;font-display:swap;
  src:url('../assets/fonts/ibm-plex-mono-700.woff2') format('woff2');}
*/
