/* Self-hosted webfonts — latin subset.

   WHY: the site's CSP is `style-src 'self'; font-src 'self'`, so the Google Fonts
   <link> that used to sit in baseof.html was BLOCKED in-browser. Inter and
   JetBrains Mono NEVER loaded for any visitor — everyone saw the fallback stack.
   `curl` returns 200 for that Google URL, so a status-only check cannot detect
   this; it only shows up in a real browser (0 loaded faces in document.fonts).

   Inter is shipped as ONE VARIABLE font covering weights 400-900. Google's CSS
   lists six separate @font-face rules, but all six point at a byte-identical file
   (verified by md5) — naming them separately would have meant five redundant
   downloads and ~241 KB of waste.

   font-display: swap so text stays visible while the font loads. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;              /* variable range */
  font-display: swap;
  src: url('/fonts/inter-variable.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
