/* Deklarasi @font-face untuk Open Sans Regular */
@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Regular"),
    local("OpenSans-Regular"),
    url("OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src:
    local("Outfit Light"),
    local("Outfit-Light"),
    url("Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src:
    local("Outfit Regular"),
    local("Outfit-Regular"),
    url("Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Deklarasi kelas yang akan menggunakan font Open Sans */
.custom-font {
  font-family: "Open Sans", sans-serif;
  /* Gaya lain yang diinginkan dapat ditambahkan di sini */
  font-weight: normal; /* atau 700 untuk bold */
  font-size: 16px; /* atur ukuran font sesuai kebutuhan */
  color: #333; /* atur warna teks sesuai kebutuhan */
}
