/* ─── Local Fonts — PIXEL_ERA ──────────────────────────────────────────────
   Replaces all Google Fonts external links.
   Font files must be present at the paths below.
   Download sources:
     Inter:            https://fonts.google.com/specimen/Inter
     Space Grotesk:    https://fonts.google.com/specimen/Space+Grotesk
     Material Symbols: https://fonts.google.com/icons (variable font download)
                       or: npm install material-symbols  →  node_modules/material-symbols/
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Inter (variable font, covers wght 100–900) ──────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/Inter/Inter[slnt,wght].woff2') format('woff2');
}

/* ── Space Grotesk (variable font, covers wght 300–700) ──────────────────── */
/*    Note: Tailwind uses font-black (900) and font-extrabold (800) in some   */
/*    places — the browser will clamp these to 700 (the font's max weight).   */
/*    Visually indistinguishable from the Google-served version.              */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/SpaceGrotesk/SpaceGrotesk[wght].woff2') format('woff2');
}

/* ── Material Symbols Outlined (variable icon font) ─────────────────────── */
/*    Required axes: FILL 0..1, GRAD -50..200, opsz 20..48, wght 100..700   */
/*    File size: ~3 MB (full glyph set). Download the variable font from     */
/*    Google Fonts → Material Symbols → Download family (select Outlined).   */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('../assets/fonts/MaterialSymbolsOutlined/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}
