/*
 * The purchased template's own CSS declares --bs-body-font-family: "Inter", sans-serif
 * but never actually ships or loads the Inter font files (only bootstrap-icons is bundled
 * under assets/css/fonts/) — it silently falls back to generic sans-serif. This file self-hosts
 * Inter (same files nexdoc already uses) so the template's own intended font actually loads.
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/inter/inter-300.woff2') format('woff2');
}

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

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter/inter-700.woff2') format('woff2');
}
