/* 
 * Font Lokal - Kiansa EduSIM
 * File font (.woff2) harus diletakkan di folder yang sama dengan file ini
 * 
 * Struktur folder:
 * /static/fonts/
 *   ├── fonts.css (file ini)
 *   ├── inter/
 *   │   └── Inter-VariableFont.woff2
 *   ├── poppins/
 *   │   ├── Poppins-Regular.woff2
 *   │   ├── Poppins-Medium.woff2
 *   │   ├── Poppins-SemiBold.woff2
 *   │   └── Poppins-Bold.woff2
 *   ├── roboto/
 *   ├── source-sans-pro/
 *   └── ...
 */

/* ============================================
   INTER - Variable Font
   ============================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter/Inter-VariableFont.woff2') format('woff2');
}

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

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

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

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

/* ============================================
   ROBOTO
   ============================================ */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/roboto/Roboto-Regular.woff2') format('woff2');
}

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

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

/* ============================================
   SOURCE SANS PRO (Source Sans 3)
   ============================================ */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/source-sans-pro/SourceSans3-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/source-sans-pro/SourceSans3-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/source-sans-pro/SourceSans3-Bold.woff2') format('woff2');
}

/* ============================================
   OPEN SANS
   ============================================ */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/open-sans/OpenSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/open-sans/OpenSans-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/open-sans/OpenSans-Bold.woff2') format('woff2');
}

/* ============================================
   NUNITO
   ============================================ */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/nunito/Nunito-Regular.woff2') format('woff2');
}

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

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

/* ============================================
   LATO
   ============================================ */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/lato/Lato-Regular.woff2') format('woff2');
}

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

