/* ==========================================================================
   OgbonLab, Self-hosted webfonts (2026-06-12)
   --------------------------------------------------------------------------
   Until now the "Book Paper" system relied on system font stacks: the
   prose serif was Charter, which ships ONLY on Apple platforms, so
   Windows and Android readers fell back to Georgia/Roboto and never saw
   the designed look. These three latin-subset VARIABLE woff2 files give
   every platform the same typography:

     - Literata (roman + italic): Google's long-form e-book serif with
       an optical-size axis (opsz 7..72). Carries all textbook prose.
       ~110 KB + ~113 KB.
     - Inter (roman): the UI sans the typography.css stack has always
       named but never loaded. Carries buttons, nav, labels. ~73 KB.

   Loading strategy: font-display swap (brief system-font flash on the
   very first uncached visit, same as the Fraunces precedent in
   welcome-v2-emphasis.css); the roman files are <link rel=preload>'d
   in index.html and precached by sw.js, so it is a one-time event.
   unicode-range keeps non-latin pages from downloading them at all.
   Licenses: OFL.txt alongside each family in vendor/fonts/.
   ========================================================================== */

@font-face {
  font-family: 'Literata';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../vendor/fonts/literata/Literata-var-latin.woff2') format('woff2-variations'),
       url('../vendor/fonts/literata/Literata-var-latin.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: 'Literata';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url('../vendor/fonts/literata/Literata-Italic-var-latin.woff2') format('woff2-variations'),
       url('../vendor/fonts/literata/Literata-Italic-var-latin.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('../vendor/fonts/inter/Inter-var-latin.woff2') format('woff2-variations'),
       url('../vendor/fonts/inter/Inter-var-latin.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;
}
