/* styles/fonts.css */
@font-face {
    font-family: 'Stapel';
    src: url('../fonts/Stapel-Condensed.woff2') format('woff2'),
         url('../fonts/Stapel-Condensed.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900; /* Указываем диапазон весов */
    font-display: swap;
}

/* Italic variable font */
@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900; /* Указываем диапазон весов */
    font-display: swap;
}