/* ══════════════════════════════════════════════════════
   FONT YÜKLEME — Google Fonts + Güçlü Fallback Zinciri
   ══════════════════════════════════════════════════════ */


/* ── FALLBACK: Google Fonts yüklenemezse benzer sistem fontları ── */
:root {
    /* Exo 2 yüklenirse kullan, yoksa benzer futuristik sistem fontları */
    --font-head: 'Exo 2', 'Segoe UI', 'Arial Black', 'Trebuchet MS', sans-serif;
    /* Nunito Sans yüklenirse kullan, yoksa temiz sistem fontları */
    --font-body: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    /* Barlow Condensed veya benzer daraltılmış fontlar */
    --font-cond: 'Barlow Condensed', 'Arial Narrow', 'Impact', condensed, sans-serif;
    /* Mono fontlar */
    --font-mono: 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
}
