/* ==========================================================
   FONT FROSÓ — di-host sendiri (tidak lagi dari server Google)
   ----------------------------------------------------------
   Kenapa:
   - Dulu browser harus buka koneksi ke fonts.googleapis.com LALU
     ke fonts.gstatic.com (2 domain berbeda, 2x handshake TLS).
     Itu memakan ~200-300 ms sebelum teks bisa tampil.
   - Sekarang font diambil dari server sendiri, satu koneksi yang
     sudah terbuka. Langsung.

   Berat yang diambil HANYA yang benar-benar dipakai situs
   (sudah diukur langsung dari halaman yang dirender):
     Inter    : 400 (teks isi), 600, 700, 800
     Baloo 2  : 400, 700, 800
   Subset: latin saja. Tidak perlu cyrillic/devanagari/vietnam.

   `font-display: swap` = teks LANGSUNG tampil pakai font sistem,
   lalu bertukar begitu font asli siap. Tanpa ini, teks tidak
   kelihatan sama sekali selama font masih diunduh.
   ========================================================== */

/* ---------- Inter (teks isi) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('inter-latin-800-normal.woff2') format('woff2');
}

/* ---------- Baloo 2 (judul & logo) ---------- */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('baloo-2-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('baloo-2-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('baloo-2-latin-800-normal.woff2') format('woff2');
}
