/* Self-hosted Inter + JetBrains Mono — latin subset, variable woff2.
 *
 * Replaces the Google Fonts <link> (AUDIT-103): no external CDN, no IP/UA/
 * Referer leak to Google, no third-party render dependency, and it lets the
 * CSP drop the fonts.googleapis.com / fonts.gstatic.com exceptions.
 *
 * DRY: each family is ONE variable woff2 covering the full weight axis
 * (400-800 Inter, 400-700 JetBrains Mono) — not one static file per weight.
 * The css2 endpoint serves the same variable file for every wght@ value, so
 * 9 discrete files would be 9 byte-identical copies. We ship 2.
 *
 * Regenerate: curl the css2 URL with a modern Safari UA, pull the latin
 * woff2 from each family's variable block, save as <family>.woff2. The latin
 * unicode-range below is copied verbatim from that CSS.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/inter.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;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/jetbrains-mono.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;
}
