/**
 * Inter Font — Self-hosted for WordPress.org compliance
 *
 * Font:    Inter by Rasmus Andersson
 * License: SIL Open Font License 1.1 (OFL-1.1)
 * Source:  https://github.com/rsms/inter
 *
 * Only Latin subset is included to keep bundle size minimal.
 * Weights: 400 (Regular), 500 (Medium), 600 (SemiBold), 700 (Bold)
 *
 * @package Blog_Over
 */

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

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('Inter-Medium.woff2') format('woff2');
}

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

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

/* System font stack variable (Inter is now properly loaded) */
:root {
    --blog-over-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}