/* Replace with proper font specification */
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  src: local(''),
    url('../fonts/ttf/PublicSans-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  src: local(''),
    url('../fonts/ttf/PublicSans-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  src: local(''),
    url('../fonts/ttf/EBGaramond-Regular.ttf') format('truetype');
  }
 
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 700;
  src: local(''),
    url('../fonts/ttf/EBGaramond-Bold.ttf') format('truetype');
}

/* ADDED BY YOUSEF */

/* Font face declaration with fallbacks */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'),
       local('SourceSansPro-Light'),
       url('../fonts/SourceSansPro/SourceSansPro-Light.woff2') format('woff2'),
       url('fonts/SourceSansPro/SourceSansPro-Light.woff') format('woff');
  font-display: swap; /* Optional: avoids FOIT */
}

