const families = {
  copy: "'Exo', georgia, cursive",
  heading: "'Roboto', sans-serif",

  /** @deprecated Use the "copy" option instead */
  primary: "'Exo', georgia, cursive",

  /** @deprecated Use the "heading" option instead */
  secondary: "'Roboto', sans-serif"
};

const sizes = {
  '10': 10,
  '12': 12,
  '14': 14,
  '16': 16,
  '18': 18,
  '20': 20,
  '24': 24,
  '32': 32,
  '36': 36
};

const weights = {
  light: 300,
  regular: 500,
  bold: 700,
  'extra-bold': 900
};

const font = {
  family: families,
  size: sizes,
  weight: weights
};

export { families, font, sizes, weights };
