/*
================================================================================
1. IMPORT FONTS FROM GOOGLE
================================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;700&family=Roboto+Slab:wght@400;700&display=swap');

/*
================================================================================
2. APPLY FONTS TO OBSIDIAN ELEMENTS
================================================================================
*/
body {
  --font-default: 'Lato', sans-serif;
  --font-interface: 'Lato', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/*
================================================================================
3. APPLY FONTS TO SPECIFIC ELEMENTS (TITLE & SUBTITLE)
================================================================================
*/
.view-header-title {
  font-family: 'Roboto Slab', serif;
}

.view-header-subtitle {
  font-family: 'Lato', sans-serif;
}
