/**
 * Route: public/front/assets/css/font-display.css
 * Purpose: System fonts only - Zero external requests
 * Updated: 2026-01-18 13:22:00
 */

/* === SYSTEM FONTS ONLY === */
/* No external font loading - instant rendering, zero network requests */

body,
.body-text,
.paragraph {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
               'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
               'Helvetica Neue', Arial, sans-serif;
}

/* Font Weights */
.font-regular { font-weight: 400; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
