<style>
  /* Importa as fontes do Google */
  @import url('https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

  /* Fonte base para todo o corpo */
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
  }

  /* Títulos com Hepta Slab */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Hepta Slab', serif;
    font-weight: 400; /* ou 'inherit' se preferir */
    margin: 0;
  }
</style>