/*
 * Local typography for Site Agent Base.
 * Inter is vendored in assets/fonts and served from the site's own origin.
 * No runtime request to Google Fonts or another font CDN is required.
 */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter-variable.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter-italic-variable.woff2") format("woff2");
}

:root {
    --sa-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --sa-font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --sa-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--sa-font);
    font-optical-sizing: auto;
}
