In a two-column document, I have a figure that span almost the whole column, leaving not enough room for the caption in the remaining part of the column. Therefore, I want the caption to continue in the next column. I've tried several approaches including \captionof and \contcaption (package ccaption) and haven't been able to achieve the desired result. I've been able to move the whole caption to the next column, but the editorial staff of the journal I'm submitting to (The Cryosphere) have rejected that solution.
I've edited a capture of my document in photoshop to illustrate the desired result:

I would like to provide a generic minimal working example, but I'm tied to the journal-provided document class. The files associated to the document class together with the MWE can be downloaded here. The content of the MWE is the following:
\documentclass[journal abbreviation]{copernicus}
%% \usepackage commands included in the copernicus.cls:
%\usepackage[german, english]{babel}
%\usepackage{tabularx}
%\usepackage{cancel}
%\usepackage{multirow}
%\usepackage{supertabular}
%\usepackage{algorithmic}
%\usepackage{algorithm}
%\usepackage{amsthm}
%\usepackage{float}
%\usepackage{subfig}
%\usepackage{rotating}
\usepackage{blindtext}%Only used in this minimal example
\begin{document}
\begin{figure}[t]
\includegraphics[width=\columnwidth, height=0.9\textheight]{example-image}
\caption{\blindtext[2]}
\end{figure}
\blindtext[5]
\end{document}
if the image were smaller (for example 0.6\textheight) it looks like this:

However for a long image (0.9\textheight) it looks like this

And I need the figure to stay in the left column and the caption to continue in the right column as shown in the first image.
Any clues on how to achieve that?
