
/* Apparel Display Font - Load from local folder */
@font-face {
  font-family: 'Apparel Display';
  src: url('fonts/ApparelDisplay.woff2') format('woff2'),
       url('fonts/ApparelDisplay.woff') format('woff');
  font-style: normal;
}

/* Halimun Font - Load from local folder */
@font-face {
  font-family: 'Halimun';
  src: url('fonts/Halimun.woff2') format('woff2'),
       url('fonts/Halimun.woff') format('woff');
  font-style: normal;
}

/* Example usage with added styling */

/* Script part like “At” */
.script-font {
  font-family: 'Halimun', sans-serif;
  line-height: 1.1;
  color: #ffffff; /* dark navy tone */
}

/* Serif content text */
.serif-font {
  font-family: 'Apparel Display', serif; /* Or try: Playfair Display, Cormorant */
  line-height: 1.2;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.8); /* same tone, slightly transparent */
}



