/**
 * Orion POS - Font
 * Saat ini aplikasi memakai SYSTEM FONT STACK (font bawaan OS/browser) supaya TIDAK ADA
 * request ke Google Fonts sama sekali — ini yang paling cepat & paling andal untuk koneksi
 * server yang lambat ke internet luar.
 *
 * Jika suatu saat Anda ingin memakai font custom (Space Grotesk / Inter / JetBrains Mono)
 * secara mandiri (self-hosted, tanpa Google Fonts CDN):
 *   1. Download file .woff2 font tersebut dari https://fonts.google.com (pilih font -> Download family)
 *   2. Taruh file .woff2 di folder assets/vendor/fonts/
 *   3. Aktifkan blok @font-face di bawah ini (hapus komentar) dan sesuaikan nama filenya
 *
 * Definisi variable --font-display / --font-body / --font-mono ada di assets/css/app.css
 * dan sudah menyertakan nama font ini di urutan pertama — begitu file font tersedia,
 * browser otomatis memakainya; kalau tidak ada, otomatis fallback ke system font.
 */

/*
@font-face {
  font-family: 'Space Grotesk';
  src: url('../vendor/fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../vendor/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../vendor/fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
*/
