I've been looking at this PDF, and I can't figure out what template it is. It looks vaguely similar to this post: Showcase of beautiful typography done in TeX & friends
What I'm trying to accomplish is to replicate the style of the header, more specifically the size of the font and the type of the font.

http://www.wiwi.uni-jena.de/uiw/publications/pub_before_1999/Audretsch_Fritsch_1994b.pdf
I'm trying to replicate this document in TeX.
This is what I have so far.
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[12pt]{extarticle}
\usepackage[protrusion=true,expansion=true,tracking=true,kerning=true]{microtype}
\usepackage{multicol}
\usepackage{lipsum}
\usepackage[margin=0.5in,top=1in,bottom=1in]{geometry}
\setlength{\columnsep}{20pt}
\usepackage{fontspec,xltxtra,xunicode}
\defaultfontfeatures{Mapping=tex-text}
\setromanfont[Mapping=tex-text]{Adobe Caslon Pro}
%\setsansfont[Scale=MatchLowercase,Mapping=tex-text]{Gill Sans}
%\setmonofont[Scale=MatchLowercase]{Adobe Caslon Pro}
\title{Fancy title goes here.}
\author{Author name}
\date{November $21^{st}$, 2012} % Activate to display a given date or no date
\begin{document}
\maketitle
\begin{center}
\rule[1cm]{17cm}{0.01cm}
\end{center}
\abstract{This paper will assess various aspects of a certain topic. \lipsum[24]}
\bigskip
\noindent Keywords: Something blah geography
\begin{multicols}{2}
\subsubsection*{\centerline{\bf{INTRODUCTION}}}
\lipsum[1-10]
\end{multicols}
\end{document}
