/* PrimePost.be - Font Loading & Optimization */

/* Font Display Optimization */
/* Les fonts sont chargées via Google Fonts dans index.html */

/* Font feature settings pour une meilleure lisibilité */
body {
    font-feature-settings:
        'kern' 1, /* Kerning */
        'liga' 1, /* Ligatures standard */
        'calt' 1; /* Contextual alternatives */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Variable font axes optimizations */
.hero-title .highlight {
    /* Fraunces WONK axis pour personnalité */
    font-variation-settings: 'WONK' 1, 'SOFT' 100;
}

.big-text em {
    /* Fraunces avec moins de WONK pour subtilité */
    font-variation-settings: 'WONK' 0.5;
}

.explanation em {
    /* Fraunces avec WONK minimal */
    font-variation-settings: 'WONK' 0.3;
}

/* Fallback fonts pour performance */
@supports not (font-variation-settings: normal) {
    /* Fallback si variable fonts pas supportées */
    .hero-title .highlight,
    .big-text em,
    .explanation em {
        font-family: Georgia, serif;
        font-style: italic;
    }
}
