/* Self-hosted, latin subset only.
 *
 * Replaces the Google Fonts stylesheet this project used to load twice — once
 * as an @import at the top of index.css and once as a <link> in index.html.
 * Either one costs the same chain before a single glyph can paint: fetch the
 * app stylesheet, parse it, discover the reference, then two more cross-origin
 * round trips (fonts.googleapis.com for a second stylesheet, fonts.gstatic.com
 * for the files), each with its own DNS lookup and TLS handshake, all of it
 * blocking render.
 *
 * One file per family with a weight RANGE, not one rule per weight. Both of
 * these are variable fonts — Inter's wght axis runs 100-900 and JetBrains
 * Mono's 400-800 — so every weight Google served from a separate URL is the
 * same bytes. Declaring them individually ships each family once per weight,
 * and the browser has no way to tell the downloads apart.
 */

@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 600;
  font-display: swap;
  src: url(/fonts/JetBrainsMono.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;
}
