/* Local self-hosted font definitions
   Download the referenced .woff2 files into this folder: src/assets/fonts/
   Example filenames expected below:
     - poppins-400.woff2
     - poppins-700.woff2
     - merienda-400.woff2

   Each @font-face uses font-display: swap for faster FCP and avoids invisible text.
*/

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

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

@font-face {
  font-family: 'Merienda';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/merienda-400.woff2') format('woff2');
  font-display: swap;
}

/* Fallback for the slick icon font (already present in project) */
@font-face {
  font-family: 'slick';
  src: url('/assets/fonts/slick.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
