;;; rul-fonts.el --- Fonts configuration

(use-package fontaine
  :ensure t
  :config
  (setq fontaine-presets
      '((tiny
         :default-height 100)
        (small
         :default-height 120)
        (medium
         :default-height 140)
        (large
         :default-weight semilight
         :default-height 180
         :bold-weight extrabold)
        (presentation
         :default-weight semilight
         :default-height 200
         :bold-weight extrabold)
        (jumbo
         :default-weight semilight
         :default-height 230
         :bold-weight extrabold)
        (t
         :default-family "Iosevka"
         :default-weight regular
         :default-height 140
         :variable-pitch-family "Iosevka Aile")))

  ;; Set desired style from `fontaine-presets'
  (fontaine-set-preset 'medium))

(provide 'rul-fonts)