import { 
  Inter, 
  Heebo, 
  Signika, 
  Lusitana 
} from 'next/font/google'

export const inter = Inter({ 
  subsets: ['latin'] 
})

export const lusitana = Lusitana({
  weight: ['400', '700'],
  subsets: ['latin'],
})

export const heebo = Heebo({
  weight: ['400', '700'],
  subsets: ['latin'],
})

export const signika = Signika({
  weight: ['400', '700'],
  subsets: ['latin'],
})
