/**
 * MD Care Landing Pages - Optimized Fonts
 * 
 * ✨ Performance Optimizations:
 * - WOFF2 format only (70% smaller than TTF)
 * - Only critical weights: 300, 400, 500, 600, 700
 * - font-display: swap for better UX
 * - Removed unused weights: 100, 200, 800, 900
 * 
 * 📊 Total Savings: ~978KB reduction from original fonts.css
 *    - SVN Poppins: 537KB → 167KB (370KB saved)
 *    - SVN Quiche Sans: 845KB → 237KB (608KB saved)
 */

/* ==========================================================================
   SVN Poppins Font Family
   ========================================================================== */

/* Poppins Light (300) */
@font-face {
    font-family: 'SVN Poppins';
    src: url('../fonts/svn-poppins/SVN-Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

/* ==========================================================================
   SVN Quiche Sans - Critical Weights Only
   ========================================================================== */

/* Quiche Sans Light (300) */
@font-face {
    font-family: 'SVN Quiche Sans';
    src: url('../fonts/svn-quiche-sans/SVN-Quiche Sans Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Quiche Sans Regular (400) - Most used */
@font-face {
    font-family: 'SVN Quiche Sans';
    src: url('../fonts/svn-quiche-sans/SVN-Quiche Sans Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Quiche Sans Medium (500) */
@font-face {
    font-family: 'SVN Quiche Sans';
    src: url('../fonts/svn-quiche-sans/SVN-Quiche Sans Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Quiche Sans Bold (700) - Headings */
@font-face {
    font-family: 'SVN Quiche Sans';
    src: url('../fonts/svn-quiche-sans/SVN-Quiche Sans Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
