/* Self-hosted Inter + Outfit (was Google Fonts @import).
   These woff2 files are VARIABLE fonts (wght axis 100-900). The old fonts.css
   declared 22 single-weight @font-face rules that all pointed at md5-identical
   copies of the same 4 files, so the browser re-downloaded the same bytes once
   per weight used (7 duplicate woff2 on first load, ~285KB for ~79KB unique).
   Consolidated to 4 rules (Inter/Outfit x latin/latin-ext) with the variable
   `font-weight: 100 900` range descriptor — every weight (300-800) resolves off
   the single file per family/subset, so rendering is byte-identical.
   The 18 now-unreferenced duplicate woff2 files are kept on disk on purpose. */
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('fonts/inter-400-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-400-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:'Outfit';font-style:normal;font-weight:100 900;font-display:swap;src:url('fonts/outfit-400-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:'Outfit';font-style:normal;font-weight:100 900;font-display:swap;src:url('fonts/outfit-400-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;}

/* Metric-matched fallback faces (F089). While the variable webfonts above load
   (font-display:swap), the browser paints local Arial/Helvetica. Without metric
   overrides that fallback has different glyph advance widths + line box, so the
   swap to Inter/Outfit reflows the whole page (CLS). These faces re-shape the
   local fallback to Inter's / Outfit's real metrics so the swap is ~0-shift.
   Overrides computed from the actual font tables (English letter-frequency-
   weighted advance widths) vs Arial (upm 2048, asc 1854, desc 434):
     Inter  (upm 2048, typo asc 1984 / desc 494) -> validated vs next/font.
     Outfit (upm 1000, typo asc 1000 / desc 260)  -> instanced at wght 600, the
             weight the headings actually render at (not the Thin default).
   size-adjust is Safari 16.4+/Chrome 92+/FF 92+; older browsers ignore these
   descriptors and fall back to today's behaviour (no regression). */
@font-face{font-family:'Inter Fallback';src:local('Arial'),local('Helvetica'),local('sans-serif');size-adjust:107.33%;ascent-override:90.26%;descent-override:22.47%;line-gap-override:0%;}
@font-face{font-family:'Outfit Fallback';src:local('Arial'),local('Helvetica'),local('sans-serif');size-adjust:104.62%;ascent-override:95.58%;descent-override:24.85%;line-gap-override:0%;}
