@font-face {
    font-family: 'outfit';
    src: url('fonts/outfit/static/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

@font-face {
    font-family: 'merriweather';
    src: url('fonts/merriweather/MerriweatherSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'merriweather';
    src: url('fonts/merriweather/MerriweatherSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'merriweather';
    src: url('fonts/merriweather/MerriweatherSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'merriweather';
    src: url('fonts/merriweather/MerriweatherSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0; padding: 0;
}

@layer utilities {
  @keyframes border-draw {
    from { width: 0; }
    to { width: 100%; }
  }

  .animate-border-draw::before {
    animation: border-draw 0.3s ease forwards;
  }
}