/* Self-hosted replacement for the Google Fonts <link> this app used to load
 * (fonts.googleapis.com / fonts.gstatic.com). 2026-08-12 - the DPA states
 * booking pages load no third-party assets and fonts come from our own
 * origin; this app isn't diner-facing, but it's the same brand/font stack
 * and the same fix, done at the same time rather than left half-done.
 *
 * Both families come back from Google as VARIABLE fonts today - a single
 * woff2 per unicode-range whose `wght` axis covers every weight ANY of the
 * three Lovetts apps use (500-900 for Archivo, 400-700 for Hanken Grotesk -
 * this app itself only needs 600-800/400-700, the full range costs nothing
 * extra since it's the same one file either way), rather than a separate
 * static file per weight. One ranged @font-face per family per range is the
 * correct declaration for that, not five copies with font-weight duplicated.
 *
 * Subsetted to latin + latin-ext only (dropped vietnamese/cyrillic-ext,
 * which Google's default css2 response includes) - UI text and
 * customer-entered names/notes are Latin-script; latin-ext covers accented
 * characters (e.g. "José", "François") so it isn't over-trimmed. Re-fetch
 * from Google's css2 endpoint with a modern-browser User-Agent if a wider
 * script range is ever needed - identical files live in lovetts-tables/web/
 * assets/fonts/ and lovetts-workspace/web/assets/fonts/ too, kept in sync
 * manually since each Pages project deploys its own web/ independently -
 * no shared static host between any of the three.
 */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-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: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/hanken-grotesk-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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/hanken-grotesk-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;
}
