/*
 * ═══════════════════════════════════════════════════════
 * ABIA GREEN — LOCAL FONT DECLARATIONS
 * File: assets/fonts/fonts.css
 *
 * Strategy:
 *   1. @import from Google Fonts CDN (loads when online)
 *   2. CSS custom properties set the font stacks
 *   3. System fonts serve as offline fallbacks
 *
 * To go fully offline: download the .woff2 files from
 * https://fonts.google.com and place them in this folder,
 * then replace the @import with local @font-face blocks.
 * ═══════════════════════════════════════════════════════
 */

/* ── GOOGLE FONTS IMPORT ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/*
 * ── FULLY OFFLINE @font-face TEMPLATE ────────────────
 * Uncomment and use if woff2 files are placed in this folder:
 *
 * @font-face {
 *   font-family: 'DM Serif Display';
 *   font-style: normal;
 *   font-weight: 400;
 *   font-display: swap;
 *   src: url('DMSerifDisplay-Regular.woff2') format('woff2');
 * }
 * @font-face {
 *   font-family: 'DM Serif Display';
 *   font-style: italic;
 *   font-weight: 400;
 *   font-display: swap;
 *   src: url('DMSerifDisplay-Italic.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: 'Space Mono';
 *   font-style: normal;
 *   font-weight: 400;
 *   font-display: swap;
 *   src: url('SpaceMono-Regular.woff2') format('woff2');
 * }
 * @font-face {
 *   font-family: 'Space Mono';
 *   font-style: normal;
 *   font-weight: 700;
 *   font-display: swap;
 *   src: url('SpaceMono-Bold.woff2') format('woff2');
 * }
 */
