/* Heading font */
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/* Body font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: 'VoguerSans';
  src: url('../../fonts/voguersansfree.woff2') format('woff2'),
       url('../../fonts/voguersansfree.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Advantage';
  src: url('../../fonts/Advantage.woff2') format('woff2'),
       url('../../fonts/Advantage.woff') format('woff'),
       url('../../fonts/Advantage.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canva Sans';
  src: url('../../fonts/canva-sans-regular.woff2') format('woff2'),
       url('../../fonts/canva-sans-regular.woff') format('woff'),
       url('../../fonts/canva-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canva Sans';
  src: url('../../fonts/canva-sans-medium.woff2') format('woff2'),
       url('../../fonts/canva-sans-medium.woff') format('woff'),
       url('../../fonts/canva-sans-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canva Sans';
  src: url('../../fonts/canva-sans-bold.woff2') format('woff2'),
       url('../../fonts/canva-sans-bold.woff') format('woff'),
       url('../../fonts/canva-sans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



:root {
  --font-heading: "Poppins", sans-serif;
  --font-body: "Canva Sans", sans-serif;
  --font-advantage: "Advantage", sans-serif;
  --font-voguer: "VoguerSans", sans-serif;
  --font-canva: "Canva Sans", sans-serif;
}

body {
  font-family: var(--font-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

