module.exports = {
  content: [
    './layouts/**/*.html',
    './content/**/*.md',
    './assets/scss/**/*.scss',
  ],
  theme: {
    extend: {
      fontFamily: {
        'garamond': ['EB Garamond 12', 'serif'],
        'iosevka': ['Iosevka', 'monospace'],
      },
    },
  },
  plugins: [
    require('@tailwindcss/typography'),
  ],
};