/* static/css/fonts.css */

/* --- INTER (MAIN FONT) --- */
@font-face {
    font-family: 'InterVF'; /* We use a custom name here for clarity */
    src: url('/static/fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 100 900; /* Defines the range of weights available */
    font-style: normal;
    font-display: swap; /* Ensures text is visible while font loads */
}

@font-face {
    font-family: 'InterVF';
    src: url('/static/fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* --- PLAYFAIR DISPLAY (ACCENT FONT) --- */
@font-face {
    font-family: 'PlayfairVF'; /* We use a custom name here for clarity */
    src: url('/static/fonts/PlayfairDisplay-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 400 900; /* Define the range for Playfair */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PlayfairVF';
    src: url('/static/fonts/PlayfairDisplay-Italic-VariableFont_opsz,wght.woff2') format('woff2');
    font-weight: 400 900;
    font-style: italic;
    font-display: swap;
}