/*
 * Шрифты garant.ae — подход 1:1 с live-сайтом.
 *
 * Базовый набор (Lato / Montserrat / Libre Baskerville) — с Google Fonts,
 * подключается через <link rel="preconnect"> + <link rel="stylesheet"> в meta.php.
 * Google Fonts оптимально отдаёт unicode-range subsets (latin / cyrillic / latin-ext)
 * и хорошо кешируется между сайтами.
 *
 * Gotham Pro — локально в /assets/fonts/gotham-pro/ (на live грузился с cdnfonts.com).
 * Foundry Monoline — в fallback-стеке, без @font-face (на live тоже не подгружается).
 */

/* ---- Gotham Pro (local) ---- */

@font-face {
    font-family: 'Gotham Pro';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: local('Gotham Pro Light'), url('/assets/fonts/gotham-pro/GothaProLig.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-weight: 300;
    font-style: italic;
    font-display: swap;
    src: local('Gotham Pro Light Italic'), url('/assets/fonts/gotham-pro/GothaProLigIta.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: local('Gotham Pro'), url('/assets/fonts/gotham-pro/GothaProReg.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: local('Gotham Pro Medium'), url('/assets/fonts/gotham-pro/GothaProMed.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-weight: 500;
    font-style: italic;
    font-display: swap;
    src: local('Gotham Pro Medium Italic'), url('/assets/fonts/gotham-pro/GothamProMediumItalic.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: local('Gotham Pro Bold'), url('/assets/fonts/gotham-pro/GothaProBol.woff') format('woff');
}
@font-face {
    font-family: 'Gotham Pro';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: local('Gotham Pro Black'), url('/assets/fonts/gotham-pro/GothaProBla.woff') format('woff');
}
