/**
 * Lato @font-face declarations.
 *
 * The original theme listed src URLs in this order:
 *   url(.woff) format("woff"), url(.woff2) format("woff2"), url(.ttf), url(.eot)
 * On this static mirror only the .woff2 files are present, so the .woff and
 * .ttf entries 404'd on every page load (~8 failed requests, ~1s on a slow
 * mobile + 8 console errors). Re-issued with woff2-only src and present
 * weights only (200 and 300 weren't used on this page).
 *
 * @version    2.1.7-trustanium-1
 */
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Lato Regular"), local("Lato-Regular"), local("Lato"),
         url(../fonts/Lato-Regular.woff2) format("woff2");
}
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Lato Bold"), local("Lato-Bold"),
         url(../fonts/Lato-Bold.woff2) format("woff2");
}
