/**
 * NUNITO FONT - Self-Hosted
 * 
 * Weights included: 400 (Regular), 600 (SemiBold), 700 (Bold), 800 (ExtraBold)
 * Format: TTF (TrueType)
 * 
 * Source: Google Fonts (SIL Open Font License)
 * Self-hosted for privacy and performance.
 * 
 * CJK FALLBACK: Use system fonts for Japanese/Chinese characters
 * Recommended CSS: font-family: 'Nunito', 'Hiragino Sans', 'Microsoft YaHei', system-ui, sans-serif;
 */

/* Nunito Regular (400) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./static/Nunito-Regular.ttf') format('truetype');
}

/* Nunito SemiBold (600) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./static/Nunito-SemiBold.ttf') format('truetype');
}

/* Nunito Bold (700) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./static/Nunito-Bold.ttf') format('truetype');
}

/* Nunito ExtraBold (800) */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('./static/Nunito-ExtraBold.ttf') format('truetype');
}