/**
 * Локальні (self-hosted) шрифти Mulish та Montserrat.
 * Замінюють завантаження цих родин із Google Fonts (приватність/GDPR,
 * без залежності від третьої сторони, детермінований рендер).
 * IBM Plex Sans/Mono лишаються з Google Fonts (гібридна доставка).
 * Файли .ttf лежать у assets/fonts/{Mulish,Montserrat}; на диску є
 * ваги 400/500/600/700 - саме їх використовує інтерфейс після
 * конвергенції типографіки (вага 800 нормалізована до <=700).
 */

/* --- Mulish (--font-primary / --font-sans) --- */
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Montserrat (--font-display / --font-secondary) --- */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
