/* Google Fonts Figtree */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* Fuente local Bounded */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-Black.woff2') format('woff2'),
       url('../fonts/Bounded-Black.woff') format('woff'),
       url('../fonts/Bounded-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Variables para usarlas fácil */
:root {
  --heading-font: 'Bounded', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --body-font: 'Figtree', sans-serif;
}


/* Como usarla 
#descarga-nuestra-app {
    font-family: var(--heading-font);
}
*/