/* Self-hosted faces. Replaces the fonts.googleapis.com / fonts.gstatic.com
   pair that every page used to load.

   The reason is not performance. Requesting a font from Google's CDN
   discloses the visitor's IP address to Google as a condition of reading
   the page, and one of the pages doing that was the privacy notice. The
   app already bundles its own fonts and makes no third-party request at
   all; this brings the site in line with it.

   Three files, not eight. Google serves one variable font per family and
   declares it repeatedly at single weights; self-hosted, the same file is
   declared once per family across the weight range it actually supports,
   and the browser instances 500/600/700 from it. Latin subset only — the
   site is English, and the subset covers £, the em dash and the middot,
   which is the whole of what the copy needs beyond ASCII.

   Ranges are the supported wght axis per family: Archivo and Inter are
   100-900, JetBrains Mono is 100-800. Declaring a range wider than the
   axis would let the browser synthesise weights instead of instancing
   them, which reads as a slightly wrong typeface rather than an error. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/archivo-latin-var.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: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-var.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: 100 800;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin-var.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;
}
