/* ============================================================
   OliverDeck — BASE · FONTS
   Manrope (UI/body), Unbounded (display), Material Symbols (icons).

   ⚠ SELF-HOST PLAN (recommended for Core Web Vitals)
   ──────────────────────────────────────────────────────────
   The site should ultimately SELF-HOST the fonts (the brief calls
   for it). The webfont binaries are not in this repo yet, so we
   load from the Google CDN below so the system renders today.
   To switch to self-host:
     1. Drop the .woff2 files into  assets/fonts/  (see that
        folder's readme.md for the exact file list).
     2. Delete the three @import lines below.
     3. Uncomment the @font-face block underneath.
   Everything else (tokens, components) stays identical — they
   only reference --od-font-* family names.
   ============================================================ */

/* SELF-HOSTED: было 3 @import с внешнего Google CDN — вынесено в локальные woff2
   (assets/fonts/*.woff2). Из РФ Google-шрифты тормозили/резались → медленный рендер. */
@import url('fonts-local.css');

/* ── SELF-HOST: uncomment once assets/fonts/*.woff2 exist ──────
@font-face {
  font-family: 'Manrope';
  font-style: normal; font-weight: 300 800; font-display: swap;
  src: url('../assets/fonts/Manrope-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('../assets/fonts/Unbounded-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal; font-weight: 100 700; font-display: block;
  src: url('../assets/fonts/MaterialSymbolsOutlined.woff2') format('woff2');
}
──────────────────────────────────────────────────────────── */
