Display Headings on Index page in different font sizes

If you theme is using body_class as it should be you can target just about any page you want with your CSS. For example, to target all h1 tags on author pages.

.author h1 {
  color:red;
}

Or all h2 on an archive page of any kind:

.archive h2 {
  color:red;
}

See the list on the Codex page or just view source on the page in question and look for <body then read off the classes.