/* web/assets/css/base_font.css */

/* manrope-200 - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-200.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-300 - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-300.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-regular - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-regular.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-500 - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-500.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-600.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-700.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-800 - cyrillic_cyrillic-ext_greek_latin_latin-ext */
@font-face {
    font-display: swap; 
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/manrope-v20-cyrillic_cyrillic-ext_greek_latin_latin-ext-800.woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
    /* ... ваші існуючі змінні кольорів та розмірів ... */
    --base-font-family: Manrope, -apple-system,Roboto,Helvetica,sans-serif;
    --base-line-height: 1.6;
    --base-text-color: var(--text-dark-grey);
    --base-bg-color: var(--color-white); /* Использует --color-white из base_color.css */

    /* === UTILITY FONT/LAYOUT VARIABLES (Добавлены из main_menu.css) === */
    --header-height: 70px;
    --font-size-nav: 14px;
}

body {
    font-family: var(--base-font-family);
    line-height: var(--base-line-height);
    color: var(--base-text-color);
    background-color: var(--base-bg-color);
}