/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');

/* Apply Roboto to body and other elements */
body {
  font-family: 'Roboto', sans-serif;
}

/* Apply Bad Script to hero section (front page header) */
.hero-title {
  font-family: 'Bad Script', serif;
  font-weight: 700;
}

/*
.subtitle-selector {
  font-family: 'Bad Script', serif;
  font-weight: 400;
}
*/

/* Apply Bad Script to page headings */
h1 {
  font-family: 'Bad Script', serif;
  font-weight: 700;
}
h2 {
  font-family: 'Bad Script', serif;
  font-weight: 400;
}
h3 {
  font-family: 'Bad Script', serif;
  font-weight: 400;
}
/* Maintain Roboto for other elements */
p, a, li {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
