/* fonts.css */
/* Подключение локальных шрифтов из папки fonts/ */

/* Bowler - для заголовков */
@font-face {
    font-family: 'Bowler';
    src: url('../fonts/BOWLER.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Manrope - для текста (variable font с поддержкой всех весов) */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope[wght].woff2') format('woff2-variations'),
         url('../fonts/Manrope/Manrope[wght].ttf') format('truetype-variations');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

/* Fallback для старых браузеров - отдельные файлы Manrope по весам */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/manrope-light.ttf') format('truetype'),
         url('../fonts/Manrope/manrope-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/manrope-regular.ttf') format('truetype'),
         url('../fonts/Manrope/manrope-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/manrope-medium.ttf') format('truetype'),
         url('../fonts/Manrope/manrope-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/manrope-semibold.ttf') format('truetype'),
         url('../fonts/Manrope/manrope-semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/manrope-bold.ttf') format('truetype'),
         url('../fonts/Manrope/manrope-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/manrope-extrabold.ttf') format('truetype'),
         url('../fonts/Manrope/manrope-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}