/* =====================================================================
   SELF-HOSTED BRAND FONTS — EB Garamond (display) + Inter (UI).
   Replaces the fonts.googleapis.com / fonts.gstatic.com stylesheet that
   every page used to load (2026-08-14 privacy pass).

   WHY: the Google stylesheet disclosed every visitor's network address to a
   third party on every page load, before any consent question is even asked.
   It also cost two extra DNS+TCP+TLS handshakes on the critical path, to two
   origins that could not reuse the site's own connection.

   WHAT THESE FILES ARE: byte-for-byte the same woff2 files Google was already
   serving us — pulled from the css2 endpoint and committed. So this is NOT a
   re-subsetting: the unicode-range splits below are Google's own, well-tested
   `latin` / `latin-ext` boundaries. No custom subsetter ran, so there is no
   chance of a silently missing glyph.

   VARIABLE, NOT STATIC INSTANCES. Google already served EB Garamond (roman)
   and Inter as ONE variable file each covering every weight we ask for — the
   old `wght@400;500;600` request pointed all three weights at the same file.
   Keeping that shape means one file per face instead of eleven. The weight
   RANGES below are what make `font-weight: 500` resolve to a real 500 rather
   than a synthesised one; do not narrow them to a single value.

   The site's copy uses curly quotes, en/em dashes and ellipses — all of those
   live in U+2000-206F, inside the `latin` range, so they are covered by the
   file that loads on an ordinary English page. `latin-ext` carries accented
   Latin (player names, book titles, quoted phrases, Bluesky posts) and is
   downloaded ONLY when a page actually renders a character in its range, so
   it costs nothing on a plain English page.

   font-display: swap — text paints immediately in the fallback and swaps when
   the font lands. /fonts/fonts-optional.css is a display:optional twin used by
   Morning Mystery, where the swap reflow was a measured layout-shift cost.

   Fonts are SIL Open Font License 1.1 — see fonts/LICENSE.txt.
   ===================================================================== */

/* ---------- EB Garamond — roman (weights 400-800) ---------- */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/ebgaramond-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/ebgaramond-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;
}

/* ---------- EB Garamond — italic (weights 400-800) ---------- */
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/ebgaramond-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/ebgaramond-italic-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;
}

/* ---------- Inter — roman (weights 100-900) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/inter-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;
}
