/* Fontlar ELLE self-host ediliyor — `next/font` KULLANILAMAZ.
   Sebep: next.config.mjs, Electron paketi icin (NEXT_EXPORT=1) `assetPrefix:"./"`
   set ediyor cunku electron/main.js `loadFile()` ile `file://` uzerinden aciyor.
   next/font goreli assetPrefix'i acikca reddediyor ve export build'i kirilir.

   Bu dosya `public/` altinda durdugu icin webpack asset pipeline'ina hic girmez;
   asagidaki goreli `url()`'ler bu CSS dosyasina gore cozulur, boylece hem
   `next dev`'de hem statik export'ta hem de Electron'daki file:// altinda calisir.
   AYNI SEBEPLE bu @font-face bloklari globals.css'e TASINMAMALI. */

/* Baslik/display — Cinzel: Roma kitabe harfi. latin-ext dahil (Turkce). */
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./cinzel-600.woff2") format("woff2");
}
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./cinzel-700.woff2") format("woff2");
}

/* Govde — Alegreya Sans: kaligrafik kokenli humanist sans. */
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./alegreya-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./alegreya-sans-700.woff2") format("woff2");
}
