/*
 * Font locali – Conferio Child Theme
 *
 * NOTA PERFORMANCE: i file .otf sono più pesanti dei .woff2.
 * Per ottimizzare, converti gli OTF in WOFF2 con uno strumento come
 * https://cloudconvert.com/otf-to-woff2  e aggiorna le src qui sotto.
 */

/* ─── Milligram Regular ─── */
@font-face {
    font-family: 'Milligram';
    src: url('../fonts/Milligram-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ─── Milligram Text – Book (upright) ─── */
@font-face {
    font-family: 'Milligram Text';
    src: url('../fonts/Milligram-Text-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ─── Milligram Text – Book (italic) ─── */
@font-face {
    font-family: 'Milligram Text';
    src: url('../fonts/Milligram-Text-Book-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ─── Milligram Text – Bold (upright) ─── */
@font-face {
    font-family: 'Milligram Text';
    src: url('../fonts/Milligram-Text-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ─── Milligram Text – Bold (italic) ─── */
@font-face {
    font-family: 'Milligram Text';
    src: url('../fonts/Milligram-Text-Bold-Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


