/* Define the fonts using @font-face for Poppins */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600; /* Semi-Bold */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200; /* Extra Light */
    font-style: normal;
  }
  @font-face {
    font-family: 'Volgarie';
    src: url('/fonts/f24q218-volgarie-volgarie-regular-400.ttf') format('truetype');
    font-weight: 200; /* Extra Light */
    font-style: normal;
  }
  @font-face {
    font-family: 'Allura';
    src: url('/fonts/Allura-Regular.ttf') format('truetype');
    font-weight: 400; /* Extra Light */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MonteCarlo';
    src: url('/fonts/MonteCarlo-Regular.ttf') format('truetype');
    font-weight: 400; /* Extra Light */
    font-style: normal;
  }
  
  /* Usage of the custom fonts */
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  /* Example of using specific font weights */
  h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
  }
  
  p {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
  }
  