/* ==========================================================================
   fontlar.css — ClientPoster web fontlari (yerel .woff2, CDN YOK)

   🔴 PROJE KURALI 1: tum JS/CSS/font/ikon projeyle sunulur. Google Fonts'a
   giden bir <link> hem kurali cignerdi hem de kullanicinin IP'sini ucuncu
   tarafa gonderirdi (KVKK).

   ⚖️ NEDEN BASE64 DEGIL: prototipte gomulu base64 ZORUNLUYDU — file://
   altinda @font-face harici dosyayi CORS ile fetch edemez ve sayfa sessizce
   Times New Roman'a duser. Urun HTTP uzerinden sunuluyor, o kisit yok.
   Ayri dosya uc kazanc veriyor: base64'un %33 sismesi yok, her font AYRI
   onbelleklenir (CSS degisince fontlar yeniden inmez) ve CSS dosyasi
   174 KB yerine ~2 KB olup render'i bloklamaz.

   🔴 TURKCE ICIN IKI ALT KUME DE ZORUNLU:
     latin      -> c o u  (ve ASCII)
     latin-ext  -> g i s I  ← Turkce'nin ayirt edici harfleri BURADA
   Yalnizca latin yuklenirse "Gunes Isigi" gibi metinler yedek fonta duser
   ve satir icinde iki farkli font karisir.

   Kaynak: Google Fonts — Space Grotesk / Outfit / JetBrains Mono (OFL 1.1)
   Uretim: arac tarafindan sunum/assets/css/fontlar.css icinden cikarildi.
   ========================================================================== */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('../fontlar/space-grotesk-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('../fontlar/space-grotesk-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('../fontlar/outfit-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('../fontlar/outfit-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url('../fontlar/jetbrains-mono-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url('../fontlar/jetbrains-mono-latin-ext.woff2') format('woff2');
}
