/* Шрифт Involve */
@font-face {
    font-family: 'Involve';
    src: url('./fonts/Involve-Regular.otf') format('opentype'),
         url('./fonts/Involve-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Involve';
    src: url('./fonts/Involve-Medium.otf') format('opentype'),
         url('./fonts/Involve-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Involve';
    src: url('./fonts/Involve-SemiBold.otf') format('opentype'),
         url('./fonts/Involve-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Involve';
    src: url('./fonts/Involve-Bold.otf') format('opentype'),
         url('./fonts/Involve-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

/* Переопределяем font-family для всего сайта */
body {
    font-family: 'Involve', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
} 