/* =====================================================================
   SELF-HOSTED FONTY – Inter (400/500/600) + Sora (600/700/800)
   ---------------------------------------------------------------------
   KDE VZÍT .woff2 (Google Fonts je přímo nenabízí ke stažení!):

   1) Otevři  https://gwfh.mranftl.com   (google-webfonts-helper)
   2) Vlevo vyhledej a klikni na  "Inter"
   3) "Select styles": zaškrtni  400 (regular), 500, 600
   4) "Select charsets": zaškrtni  latin  I  latin-ext   (latin-ext = ěščřž…)
   5) Dole klikni  "Download files"  -> stáhne se ZIP s .woff2 soubory
      (gwfh sloučí oba charsety do JEDNOHO souboru na váhu – proto stačí
       6 souborů, ne 12)
   6) Totéž pro  "Sora"  se styly  600, 700, 800
   7) Soubory PŘEJMENUJ přesně takto a nahraj do složky  /fonts/ :

        inter-v??-latin_latin-ext-regular.woff2   ->  inter-400.woff2
        inter-v??-latin_latin-ext-500.woff2       ->  inter-500.woff2
        inter-v??-latin_latin-ext-600.woff2       ->  inter-600.woff2
        sora-v??-latin_latin-ext-600.woff2        ->  sora-600.woff2
        sora-v??-latin_latin-ext-700.woff2        ->  sora-700.woff2
        sora-v??-latin_latin-ext-800.woff2        ->  sora-800.woff2

   (to "v??" je číslo verze, u každého fontu jiné – jména si jen
    zjednodušíš na pravou stranu)
   ===================================================================== */

@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('/fonts/sora-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/sora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('/fonts/sora-800.woff2') format('woff2');
}
