/*
 * Self-hosted webfonts.
 *
 * Downloaded and served from this domain rather than pulled from a font CDN:
 * a CDN request would send every visitor's IP address to a third party before
 * they have agreed to anything. Both families are licensed under the SIL Open
 * Font License, so redistributing them this way is exactly what they are for.
 *
 * Latin subsets only, and `font-display: swap` so text is readable while the
 * files load — nobody should wait for a font to read a security advisory.
 */

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../Fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../Fonts/Inter-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "IBM Plex Mono";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../Fonts/IBMPlexMono-Regular.woff2") format("woff2");
}
