/*
 * Inter font face declarations — locally-bundled subset.
 *
 * PR-20 (audit §6, OffloadedContent ERROR): WordPress.org Plugin
 * Check forbids loading fonts from external hosts. The Inter font
 * weights used across the admin dashboard and the public templates
 * are shipped with the plugin under public/vendor/inter/.
 *
 * Files: Inter-{Light,Regular,Medium,SemiBold,Bold,ExtraBold}.woff2
 * Weights: 300, 400, 500, 600, 700, 800
 *
 * Source: https://rsms.me/inter/ (SIL Open Font License 1.1)
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('Inter-Light.woff2') format('woff2');
}
@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');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('Inter-ExtraBold.woff2') format('woff2');
}
