/* Self-hosted web fonts (LEFA-28). Replaces the render-blocking
 * fonts.googleapis.com stylesheet: one request to this file, served from the
 * same origin, with the body-font woff2 preloaded in layout.templ.
 *
 * Both families ship as variable fonts (the same files Google Fonts served),
 * latin subset only — the site copy is English. The woff2 URLs carry a
 * content hash (?v=) so the immutable() middleware caches them for a year:
 * when replacing a font file, recompute its hash
 * (sha256, first 8 bytes, hex) and update the ?v= here.
 * TestFontFaceVersionsMatchFiles fails the build if these drift.
 *
 * Licenses: OFL-PlusJakartaSans.txt, OFL-JetBrainsMono.txt (SIL OFL 1.1).
 * unicode-range matches the latin subset declared by Google Fonts, so
 * out-of-range glyphs fall back to system fonts exactly as before.
 */

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/static/fonts/plus-jakarta-sans-latin.woff2?v=153fc85b70298bee") 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: 100 800;
  font-display: swap;
  src: url("/static/fonts/jetbrains-mono-latin.woff2?v=83c005d49d8a6a50") 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;
}
