/**
 * fonts.css — Self-hosted Merriweather + Lato, replacing the Google Fonts
 * CDN link. Only the weights/styles actually used in custom.css are
 * included (400/700/900 normal for both families, plus Lato 400 italic
 * for .sh-testimonial-card__quote) — the CDN URL previously requested
 * 300 normal/italic for both families despite nothing in the CSS ever
 * using font-weight: 300.
 *
 * Latin-only subset (site content is English-only) rather than Google's
 * default latin + latin-ext + cyrillic + cyrillic-ext + vietnamese split
 * — halves the file count. A character outside this subset falls back to
 * the browser's default serif/sans-serif rather than failing to render.
 */
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/merriweather-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/merriweather-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/merriweather-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/lato-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/lato-400-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/lato-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/lato-900.woff2') format('woff2');
}
