/**
 * AST Custom Fonts
 *
 * @font-face declarations for fonts bundled with the plugin.
 * Loaded on both frontend and admin so the Table Styling / Profile Styling
 * font dropdowns can preview the fonts and frontend tables can render in them.
 *
 * @since 2.1.37
 */

/* -------------------------------------------------------------
 * Anton (Google Fonts) — single weight 400, condensed display sans
 * Source: https://fonts.google.com/specimen/Anton
 * License: SIL Open Font License (see assets/fonts/anton/OFL.txt)
 * -------------------------------------------------------------*/
@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/anton/Anton-Regular.woff2') format('woff2'),
         url('../fonts/anton/Anton-Regular.ttf') format('truetype');
}

/* -------------------------------------------------------------
 * Exo 2 (Google Fonts) — variable font, weights 100–900, technical/sci-fi sans
 * Source: https://fonts.google.com/specimen/Exo+2
 * License: SIL Open Font License
 * 
 * Variable font: the single file contains every weight from Thin (100) through
 * Black (900). The 'font-weight: 100 900' declaration tells the browser the
 * font supports the entire range, so any CSS font-weight value renders natively
 * without synthesis. Italic and upright are separate files.
 * -------------------------------------------------------------*/
@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/exo2/Exo2-VariableFont_wght.woff2') format('woff2-variations');
}
@font-face {
    font-family: 'Exo 2';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/exo2/Exo2-Italic-VariableFont_wght.woff2') format('woff2-variations');
}
</content>