/* ============================================================
   FONTS.CSS — LOKALNE CZCIONKI MONTSERRAT
   ============================================================
   Ten plik zastępuje ładowanie z Google Fonts.
   Eliminuje ~230ms blokady renderowania.

   JAK WGRAĆ CZCIONKI DO WORDPRESS:
   1. W panelu WP Admin → Wygląd → Motyw → Edytor plików motywu
      ALBO przez FTP/cPanel File Manager
   2. Utwórz folder: /wp-content/themes/marta-balans-theme/assets/fonts/
   3. Wgraj do tego folderu wszystkie pliki .woff2 i .woff
   4. Ten plik (fonts.css) wgraj do: /wp-content/themes/marta-balans-theme/assets/css/

   WARIANTY WAGOWE KTÓRE MASZ:
   - 300  = lekki tekst (opisy, cytaty kursywą)
   - 400  = normalny tekst (body text, paragrafy)
   - 600  = semi-bold (linki nav, etykiety, tagi)
   - 800  = extra-bold (nagłówki H1, H2, nazwy kart)

   CZEGO BRAKUJE (używane w CSS ale nie masz pliku):
   - 500  → przeglądarka automatycznie użyje 400 lub 600 (OK)
   - 700  → przeglądarka automatycznie użyje 600 lub 800 (OK)
   - 900  → przeglądarka automatycznie użyje 800 (OK)
   - italic 300 → użyje normalnej 300 ze skosem (akceptowalne)

   display: swap = pokaż tekst od razu w czcionce systemowej,
   podmień na Montserrat gdy się załaduje (brak białego ekranu)
   ============================================================ */

/* ── MONTSERRAT 300 (light) ──────────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    url('../fonts/montserrat-v31-latin-ext-300.woff2') format('woff2'),
    url('../fonts/montserrat-v31-latin-ext-300.woff')  format('woff');
}

/* ── MONTSERRAT 400 (regular) ────────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url('../fonts/montserrat-v31-latin-ext-regular.woff2') format('woff2'),
    url('../fonts/montserrat-v31-latin-ext-regular.woff')  format('woff');
}

/* ── MONTSERRAT 600 (semi-bold) ──────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url('../fonts/montserrat-v31-latin-ext-600.woff2') format('woff2'),
    url('../fonts/montserrat-v31-latin-ext-600.woff')  format('woff');
}

/* ── MONTSERRAT 800 (extra-bold) ─────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src:
    url('../fonts/montserrat-v31-latin-ext-800.woff2') format('woff2');
    /* brak pliku .woff dla 800 — woff2 obsługuje 99% przeglądarek */
}
