/* Cadiz Font Family - Light Weight */
@font-face {
  font-family: 'Cadiz';
  src: url('/fonts/Cadiz-Light.woff2') format('woff2'),
       url('/fonts/Cadiz-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Cadiz Font Family - Regular Weight */
@font-face {
  font-family: 'Cadiz';
  src: url('/fonts/Cadiz-Regular.woff2') format('woff2'),
       url('/fonts/Cadiz-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Cadiz Font Family - Bold Weight */
@font-face {
  font-family: 'Cadiz';
  src: url('/fonts/Cadiz-Bold.woff2') format('woff2'),
       url('/fonts/Cadiz-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Utility classes for easy use */
.font-cadiz {
  font-family: 'Cadiz', sans-serif;
}

.font-cadiz-light {
  font-family: 'Cadiz', sans-serif;
  font-weight: 300;
}

.font-cadiz-regular {
  font-family: 'Cadiz', sans-serif;
  font-weight: 400;
}

.font-cadiz-bold {
  font-family: 'Cadiz', sans-serif;
  font-weight: 700;
} 