/* Prata font loader
   - If you later add local Prata font files into this folder (e.g. Prata-Regular.woff2),
     the local src can be enabled for offline usage.
   - For immediate use this file imports Prata from Google Fonts as a fallback.
*/

@font-face {
  font-family: 'PrataLocal';
  src: local('Prata'), local('Prata-Regular');
  /* Uncomment and update the lines below if you add local font files to assets/fonts/
  src: url('./Prata-Regular.woff2') format('woff2'),
       url('./Prata-Regular.woff') format('woff');
  */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

:root {
  --prata-font: 'Prata', 'PrataLocal', serif;
}

body {
  font-family: var(--prata-font);
}
