/* ============================================================================
   assets/css/nunito.css — Font utama situs: Nunito (di-hosting sendiri)
   ----------------------------------------------------------------------------
   Berkas font ada di assets/fonts/Nunito(_Sans)/ (di-host sendiri, bukan
   Google Fonts CDN), jadi halaman tetap tampil dengan font yang benar walau
   jaringan pengunjung memblokir CDN pihak ketiga, dan tanpa permintaan
   render-blocking tambahan ke domain luar.

   Dimuat di kedua layout (layouts/app.blade.php & layouts/admin.blade.php)
   SEBELUM neumorphism.css. Penerapannya sendiri — yakni body memakai
   font-family ini — diatur satu tempat di neumorphism.css (sumber kebenaran
   tunggal desain), bukan di sini. Berkas ini hanya mendaftarkan @font-face-nya.
   ========================================================================== */

/* Variable font: satu berkas mencakup seluruh bobot 200–1000. */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype-variations'),
         url('../fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf') format('truetype-variations'),
         url('../fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: italic;
    font-display: swap;
}

/* Nama berkas Nunito Sans mengandung koma — WAJIB di dalam tanda kutip,
   tanpa kutip parser CSS akan memotongnya di koma dan font gagal dimuat. */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype-variations'),
         url('../fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype-variations'),
         url('../fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
    font-weight: 200 1000;
    font-style: italic;
    font-display: swap;
}
