/* fonts.css */

/* --- Satoshi Variable Font (Covers weights 300-900) --- */
@font-face {
    font-family: 'Satoshi';
    /* Ensure the path points to where you stored the renamed file */
    src: url('./webfonts/Satoshi-Variable/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900; /* This enables the variable weight range */
    font-style: normal;
    font-display: swap; /* Improves loading performance */
}

/* --- Nohemi Variable Font (Covers weights 100-900) --- */
@font-face {
    font-family: 'Nohemi';
    /* Ensure this path matches your folder structure exactly */
    src: url('../webfonts/Nohemi-Font/Nohemi-Variable.ttf') format('truetype');
    
    /* This tells the browser this file supports all weights */
    font-weight: 100 900; 
    font-style: normal;
    font-display: swap;
}