/*
Theme Name: DSB Blank Theme
Theme URI: https://github.com/dev-site-builder
Author: Douglas RWI
Author URI: https://github.com/dev-site-builder
Description: A companion blank theme for the Dev Site Builder plugin. It completely delegates rendering to the plugin to avoid Block Theme conflicts.
Version: 1.0.1
License: GPL-2.0+
Text Domain: dsb-blank
*/

/* =============================================================
   CUSTOM FONT LOADING
   Place font files in: /wp-content/fonts/
   Supported file names (case-sensitive):
     Briery-Bold.woff2 / Briery-Bold.woff
     AtypText-Regular.woff2 / AtypText-Regular.woff
     AtypText-Medium.woff2 / AtypText-Medium.woff
   The @font-face below will load them automatically.
   If the files don't exist, browser uses system sans-serif.
   ============================================================= */

@font-face {
    font-family: 'Briery';
    src: url('/wp-content/fonts/Briery-Bold.woff2') format('woff2'),
        url('/wp-content/fonts/Briery-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Atyp Text';
    src: url('/wp-content/fonts/AtypText-Regular.woff2') format('woff2'),
        url('/wp-content/fonts/AtypText-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Atyp Text';
    src: url('/wp-content/fonts/AtypText-Medium.woff2') format('woff2'),
        url('/wp-content/fonts/AtypText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}