export default function Example() {
  const FontWeightExample = styled("p", {
    fontFamily: theme.fonts.subhead,
    fontWeight: theme.fontWeights.light, // font weight example
    fontSize: theme.fontSizes["200"],
    color: theme.colors.primary,
  });

  return <FontWeightExample>Headline</FontWeightExample>;
}