/**
 * DCM Admin - Self-Hosted Fonts
 * Version: 1.0.0
 *
 * Inter font family - SIL Open Font License
 * https://fonts.google.com/specimen/Inter
 *
 * Weights included:
 * - 400 (Regular) - Body text
 * - 500 (Medium) - Emphasized text
 * - 600 (SemiBold) - Subheadings, labels
 * - 700 (Bold) - Headings
 */

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

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

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

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

/* ============================================
   FONT VARIABLES
   ============================================ */
:root {
    /* Primary UI font */
    --dcm-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Monospace for code/data */
    --dcm-font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Courier New', monospace;

    /* Font weights */
    --dcm-font-weight-normal: 400;
    --dcm-font-weight-medium: 500;
    --dcm-font-weight-semibold: 600;
    --dcm-font-weight-bold: 700;

    /* Font sizes */
    --dcm-font-size-xs: 0.75rem;    /* 12px */
    --dcm-font-size-sm: 0.875rem;   /* 14px */
    --dcm-font-size-base: 1rem;     /* 16px */
    --dcm-font-size-lg: 1.125rem;   /* 18px */
    --dcm-font-size-xl: 1.25rem;    /* 20px */
    --dcm-font-size-2xl: 1.5rem;    /* 24px */
    --dcm-font-size-3xl: 1.875rem;  /* 30px */
    --dcm-font-size-4xl: 2.25rem;   /* 36px */

    /* Line heights */
    --dcm-line-height-tight: 1.25;
    --dcm-line-height-normal: 1.5;
    --dcm-line-height-relaxed: 1.75;
}
