/* Light (300) */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Regular (400) */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Medium (500) - Map to Regular or Bold? Usually value between 400 and 700. 
   Let's map to Regular for a cleaner look or just let browser synthesize. 
   Explicitly mapping avoids synthesis artifacts. */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* SemiBold (600) - Map to Bold */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Bold (700) */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Extra Bold (800) - Map to Heavy/Black */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Heavy.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Black/Heavy (900) */
@font-face {
    font-family: 'SystemFont';
    src: url('../fonts/Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Force override global font family */
html,
body {
    font-family: 'SystemFont', sans-serif !important;
}

/* Override Tailwind utilities */
.font-sans,
.font-serif,
.font-mono {
    font-family: 'SystemFont', sans-serif !important;
}